home *** CD-ROM | disk | FTP | other *** search
- ;; Eulisp Module
- ;; Author: pab
- ;; File: streams.em
- ;; Date: Sun Jun 6 18:06:33 1993
- ;;
- ;; Project:
- ;; Description:
- ;;
-
- (defmodule streams
- (standard0
- list-fns
-
- )
- ()
-
- ;; low level object
- (defstruct file-stream ()
- ((file accessor file-stream-file))
- )
-
-
- ;; Top level protocol
-
- ;; stream operations
- (defgeneric open (stream))
-
-
- ;; Format operations
-
- ;; Scan operations
-
- ;; end module
- )
-
-
- (defclass <stream> ()
- ((representation accessor stream-rep)
- (functions accessor
- )
-
- (read-fn accessor stream-read-fn)
- (seek-fn accessor stream-seek-fn)
- (write-fn accessor stream-write-fn)
- (close-fn accessor stream-close-fn
- )
-
-